home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / database / hl / hl-1.002 / hl-1 / PrintLabels / Makefile next >
Encoding:
Makefile  |  1995-04-15  |  556 b   |  23 lines

  1. CPP = gcc
  2. CFLAGS = -I../Include -g -c
  3. ODIR = ../bin
  4. PROGRAM = PrintLabels
  5. LFLAGS = -g -L../Lib -llibr -lg++
  6.  
  7. SRCS = PrintLabels.cc
  8.  
  9. OBJS = PrintLabels.o
  10.  
  11. $(ODIR)/$(PROGRAM) : $(OBJS) ../Lib/liblibr.a
  12.     $(CPP) -o $(ODIR)/$(PROGRAM) $(OBJS) $(LFLAGS)
  13.  
  14. PrintLabels.o : PrintLabels.cc PrintLabels.h ../Include/common.h \
  15.         ../Include/vm.h ../Include/vBTree.h \
  16.         ../Include/Card.h ../Include/CardRecord.h \
  17.         ../Include/ListRecord.h ../Include/PTree.h
  18.         $(CPP) $(CFLAGS) PrintLabels.cc -o PrintLabels.o
  19.  
  20. PrintLabels.h : PrintLabels.arg
  21.     makeargprc PrintLabels
  22.  
  23.